home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1996 September / Designer's Club 1996 September.iso / mac / Idea Source / CANNON.DIR / 00022.ls < prev    next >
Encoding:
Text File  |  1996-08-14  |  681 b   |  27 lines

  1. on mouseDown
  2.   if (the movieTime of sprite 9 > 145) and (the movieTime of sprite 9 < 165) then
  3.     puppetSound("boomhit")
  4.     puppetSprite(8, 1)
  5.     set the castNum of sprite 8 to 35
  6.     updateStage()
  7.     puppetSprite(8, 0)
  8.     play frame "highcenterfry"
  9.     exit
  10.   end if
  11.   if (the movieTime of sprite 9 > 60) and (the movieTime of sprite 9 < 80) then
  12.     puppetSound("boomhit")
  13.     puppetSprite(8, 1)
  14.     set the castNum of sprite 8 to 35
  15.     updateStage()
  16.     puppetSprite(8, 0)
  17.     play frame "highcenterfry"
  18.     exit
  19.   end if
  20.   puppetSound("boom")
  21.   puppetSprite(8, 1)
  22.   set the castNum of sprite 8 to 35
  23.   updateStage()
  24.   puppetSprite(8, 0)
  25.   play frame "highcenterboom"
  26. end
  27.